home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / v cisle / tclock / tclocklight-040702-3.exe / source / player / tcplayer.h < prev    next >
C/C++ Source or Header  |  2004-04-01  |  1KB  |  47 lines

  1. /*-------------------------------------------
  2.   tctimer.h
  3. ---------------------------------------------*/
  4.  
  5. #define _WIN32_IE    0x0200
  6. #define _WIN32_WINNT 0x0400
  7. #define WINVER       0x0400
  8.  
  9. #include <windows.h>
  10. #include <commctrl.h>
  11. #include "resource.h"
  12. #include "../common/common.h"
  13.  
  14. #define IDTIMER_PLAYER 1
  15.  
  16. #define IDC_LIST       1
  17.  
  18. /* ---------- main.c --------------- */
  19.  
  20. BOOL ExecCommandString(HWND hwnd, const char *command);
  21.  
  22. extern HINSTANCE g_hInst;
  23. extern char  g_mydir[];
  24. extern BOOL  g_bIniSetting;
  25. extern char  g_inifile[];
  26. extern char  g_langfile[];
  27. extern HFONT g_hfontDialog;
  28. extern HWND  g_hwndClock;
  29. extern HWND  g_hwndPlayer;
  30.  
  31. /* ---------- dialog.c --------------- */
  32.  
  33. void OnShowDialog(HWND hwnd);
  34.  
  35. extern HWND g_hDlg;
  36.  
  37. /* ---------- player.c --------------- */
  38. void InitPlayer(HWND hwnd);
  39. void OnTimerPlayer(HWND hwnd);
  40. BOOL Player(HWND hwnd, const char *fname);
  41. BOOL IsPlayerPlaying(void);
  42. void OnMCINotifyPlayer(HWND hwnd, WPARAM wFlags, LONG lDevID);
  43. void StopPlayer(HWND hwnd);
  44. void PausePlayer(HWND hwnd);
  45. void PrevNextPlayer(HWND hwnd, BOOL bNext);
  46. void OnRequestMenu(HWND hwnd, BOOL bClear);
  47.